home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 August / PC Plus SuperCD 50b Issue 142 (CD142b) (August 1998).iso / handson / CPPBuild / STEP2 / PROJECT1.CPP next >
Encoding:
C/C++ Source or Header  |  1998-05-08  |  705 b   |  24 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl\vcl.h>
  3. #pragma hdrstop
  4. //---------------------------------------------------------------------------
  5. USEFORM("Unit1.cpp", Form1);
  6. USERES("Project1.res");
  7. USEUNIT("xlist.cpp");
  8. //---------------------------------------------------------------------------
  9. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  10. {
  11.     try
  12.     {
  13.         Application->Initialize();
  14.         Application->CreateForm(__classid(TForm1), &Form1);
  15.         Application->Run();
  16.     }
  17.     catch (Exception &exception)
  18.     {
  19.         Application->ShowException(&exception);
  20.     }
  21.     return 0;
  22. }
  23. //---------------------------------------------------------------------------
  24.